home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 1996 February
/
macformat-034.iso
/
mac
/
Shareware City
/
Developers
/
simple-sockets-11-c
/
Simple Sockets 1.1 ƒ
/
ip ƒ
/
iptime.h
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-01-12
|
402 b
|
21 lines
|
[
TEXT/CWIE
]
/*
* time.h
*
* unixlike time stuff
*
*/
#ifndef __IPTIMEH__
#define __IPTIMEH__
struct timeval {
long tv_sec; /* seconds since Jan. 1, 1970 */
long tv_usec; /* and microseconds */
};
struct timezone {
int tz_minuteswest; /* minutes west of Greenwich */
int tz_dsttime; /* type of dst correction */
};
#endif /* __IPTIMEH__ */